home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Plug-In Power Pack for Netscape Communicator
/
Plug-In Power Pack for Netscape Communicator.iso
/
plugins
/
dataviews
/
dvtools
/
examples
/
fds
/
fdseval
/
vidirent.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-08
|
1KB
|
44 lines
/*
| file name - VIdirent.h
|===================================================================
|
| copyright (c) 1989, V. I. Corporation
|
| Charlie Goldensher May. 30, 1989
|
|===================================================================
|
| Module description/function:
| This contains typedefs for use with the functions defined
| in VIdirectory.c
|
|====================================================================
*/
#ifndef _VIdirent_
#define _VIdirent_
#ifndef MAXNAMLEN
#define MAXNAMLEN 255
#endif
typedef struct VIdirent
{
ADDRESS entstruct; /* system dependent dirent struct */
ULONG d_fileno; /* file number of entry */
unsigned short d_namlen; /* length of string in d_name */
char *d_name; /* name of file */
} VIDIRENT;
typedef struct _VIdirdesc
{
ADDRESS dirstruct; /* system dependent DIR struct */
char *dirname; /* name of the directory opened */
VIDIRENT dirent; /* space for dirent */
} VIDIR;
VIDIR *VIopendir();
VIDIRENT *VIreaddir();
int VIclosedir();
#endif /* _VIdirent_ */